Splash Screen with Progress Bar (Loading Page)Visual Basic 6.0-Quick and easy\r<br>Tutorial is mainly focused on the following points.\r<br>1.How you can create a splash Screen.\r<br>2.How you can add progress Bar to your form using advanced controls.\r<br>3.Above the progress Bar, We can also show Loading Label along with progress meter that starts from 0% and end at 100%.\r<br>When loading is completed, immediately Welcome /Main Page appears on the screen.\r<br>All Steps are self explanatory and easy.\r<br>Every one can create such splash screen with progress Bar.\r<br>for your little help am attaching the code for your reference.\r<br>\r<br>VB Code:\r<br>Option Explicit\r<br>\r<br>Private Sub Form_Load()\r<br>Timer1.Enabled = True\r<br>End Sub\r<br>\r<br>Private Sub Timer1_Timer()\r<br>ProgressBar1.Value = ProgressBar1.Value + 5\r<br>Label1.Caption = Loading...\r<br>Label5.Caption = ProgressBar1.Value & %\r<br> If (ProgressBar1.Value = ProgressBar1.Max) Then\r<br> Timer1.Enabled = False Unload Me Form2.Show\r<br> End If\r<br>End Sub\r<br>\r<br>_____________________________________________________________\r<br>Here is my updated List of Tutorials.\r<br>_____________________________________________________________\r<br>Create and store data in Microsoft Excel Sheet using visual basic \r<br>Search records in listview control \r<br>Create and Display Popup menu in Visual Studio \r<br>Search Records between Two dates using DataGrid \r<br>How to Connect Listview with Database and Load data into Listview \r<br>Add Delete Search and Sort Listitems in Listview control \r<br>How to Reset Forgotten Password by User Verification in Visual Basic 6.0 \r<br>How to Connect Datagrid control with Access database without VB6 ADODC\r<br>\r<br>How to Make installer for Visual Basic Database\r<br>\r<br> ImageCombo and ImageList-Display Image with Combo items in Combobox \r<br>Create Save Update Delete and Search Student Profile Using Visual Basic/Ms Access-Step by Step \r<br>Advance Login System (Splash Screen with Progress Bar,User Registration,Login system,Welcome ) \r<br>Add Delete Update Search Records \r<br>How to Print Data Report in VB6 \r<br>How to Use Data Manager in VB6 \r<br>Create Tool Bar,Status Bar and Menu Bar \r<br>Common dialog control- Font and Color Dialog \r<br>Search Records in Database (By Name or ID) \r<br>Login Form using Visual Basic 6.0 \r<br>Add Delete Update and Clear records \r<br>Simple Visual Basic Database Application \r<br>Design Font Dialog Box in VB 6 \r<br>Road Traffic lights Animated system \r<br>ListBox Control( Advanced) \r<br>ListBox Control -Add,Delete and Clear items \r<br>Custom Progress Bar with percentage completed on Splash Screen \r<br>Frame Control,Check Box and Option Buttons \r<br>Picture Viewer+Browser in Visual Basic \r<br>Splash Screen with Progress Bar- \r<br>Create Menus,Drop Down Menus ,Nested menus in Menu Bar \r<br>\r<br>for more Visual Basic tutorials,please visit \r<br>Youtube Channel:\r<br>Computer Gyan Blog: